home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / alsa / version.h < prev   
Text File  |  2006-01-09  |  499b  |  16 lines

  1. /*
  2.  *  version.h
  3.  */
  4.  
  5. #define SND_LIB_MAJOR        1 /**< major number of library version */
  6. #define SND_LIB_MINOR        0 /**< minor number of library version */
  7. #define SND_LIB_SUBMINOR    10 /**< subminor number of library version */
  8. #define SND_LIB_EXTRAVER    1000000 /**< extra version number, used mainly for betas */
  9. /** library version */
  10. #define SND_LIB_VERSION        ((SND_LIB_MAJOR<<16)|\
  11.                  (SND_LIB_MINOR<<8)|\
  12.                   SND_LIB_SUBMINOR)
  13. /** library version (string) */
  14. #define SND_LIB_VERSION_STR    "1.0.10"
  15.  
  16.